home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / perl / 5.10.0 / base.pm < prev    next >
Text File  |  2008-07-24  |  5KB  |  181 lines

  1. package base;
  2.  
  3. use strict 'vars';
  4. use vars qw($VERSION);
  5. $VERSION = '2.13';
  6.  
  7. # constant.pm is slow
  8. sub SUCCESS () { 1 }
  9.  
  10. sub PUBLIC     () { 2**0  }
  11. sub PRIVATE    () { 2**1  }
  12. sub INHERITED  () { 2**2  }
  13. sub PROTECTED  () { 2**3  }
  14.  
  15. my $Fattr = \%fields::attr;
  16.  
  17. sub has_fields {
  18.     my($base) = shift;
  19.     my $fglob = ${"$base\::"}{FIELDS};
  20.     return( ($fglob && 'GLOB' eq ref($fglob) && *$fglob{HASH}) ? 1 : 0 );
  21. }
  22.  
  23. sub has_version {
  24.     my($base) = shift;
  25.     my $vglob = ${$base.'::'}{VERSION};
  26.     return( ($vglob && *$vglob{SCALAR}) ? 1 : 0 );
  27. }
  28.  
  29. sub has_attr {
  30.     my($proto) = shift;
  31.     my($class) = ref $proto || $proto;
  32.     return exists $Fattr->{$class};
  33. }
  34.  
  35. sub get_attr {
  36.     $Fattr->{$_[0]} = [1] unless $Fattr->{$_[0]};
  37.     return $Fattr->{$_[0]};
  38. }
  39.  
  40. if ($] < 5.009) {
  41.     *get_fields = sub {
  42.         # Shut up a possible typo warning.
  43.         () = \%{$_[0].'::FIELDS'};
  44.         my $f = \%{$_[0].'::FIELDS'};
  45.  
  46.         # should be centralized in fields? perhaps
  47.         # fields::mk_FIELDS_be_OK. Peh. As long as %{ $package . '::FIELDS' }
  48.         # is used here anyway, it doesn't matter.
  49.         bless $f, 'pseudohash' if (ref($f) ne 'pseudohash');
  50.  
  51.         return $f;
  52.     }
  53. }
  54. else {
  55.     *get_fields = sub {
  56.         # Shut up a possible typo warning.
  57.         () = \%{$_[0].'::FIELDS'};
  58.         return \%{$_[0].'::FIELDS'};
  59.     }
  60. }
  61.  
  62. sub import {
  63.     my $class = shift;
  64.  
  65.     return SUCCESS unless @_;
  66.  
  67.     # List of base classes from which we will inherit %FIELDS.
  68.     my $fields_base;
  69.  
  70.     my $inheritor = caller(0);
  71.     my @isa_classes;
  72.  
  73.     my @bases;
  74.     foreach my $base (@_) {
  75.         if ( $inheritor eq $base ) {
  76.             warn "Class '$inheritor' tried to inherit from itself\n";
  77.         }
  78.  
  79.         next if grep $_->isa($base), ($inheritor, @bases);
  80.  
  81.         if (has_version($base)) {
  82.             ${$base.'::VERSION'} = '-1, set by base.pm' 
  83.               unless defined ${$base.'::VERSION'};
  84.         }
  85.         else {
  86.             my $sigdie;
  87.             {
  88.                 local $SIG{__DIE__};
  89.                 eval "require $base";
  90.                 # Only ignore "Can't locate" errors from our eval require.
  91.                 # Other fatal errors (syntax etc) must be reported.
  92.                 die if $@ && $@ !~ /^Can't locate .*? at \(eval /;
  93.                 unless (%{"$base\::"}) {
  94.                     require Carp;
  95.                     local $" = " ";
  96.                     Carp::croak(<<ERROR);
  97. Base class package "$base" is empty.
  98.     (Perhaps you need to 'use' the module which defines that package first,
  99.     or make that module available in \@INC (\@INC contains: @INC).
  100. ERROR
  101.                 }
  102.                 $sigdie = $SIG{__DIE__} || undef;
  103.             }
  104.             # Make sure a global $SIG{__DIE__} makes it out of the localization.
  105.             $SIG{__DIE__} = $sigdie if defined $sigdie;
  106.             ${$base.'::VERSION'} = "-1, set by base.pm"
  107.               unless defined ${$base.'::VERSION'};
  108.         }
  109.         push @bases, $base;
  110.  
  111.         if ( has_fields($base) || has_attr($base) ) {
  112.             # No multiple fields inheritance *suck*
  113.             if ($fields_base) {
  114.                 require Carp;
  115.                 Carp::croak("Can't multiply inherit fields");
  116.             } else {
  117.                 $fields_base = $base;
  118.             }
  119.         }
  120.     }
  121.     # Save this until the end so it's all or nothing if the above loop croaks.
  122.     push @{"$inheritor\::ISA"}, @isa_classes;
  123.  
  124.     push @{"$inheritor\::ISA"}, @bases;
  125.  
  126.     if( defined $fields_base ) {
  127.         inherit_fields($inheritor, $fields_base);
  128.     }
  129. }
  130.  
  131. sub inherit_fields {
  132.     my($derived, $base) = @_;
  133.  
  134.     return SUCCESS unless $base;
  135.  
  136.     my $battr = get_attr($base);
  137.     my $dattr = get_attr($derived);
  138.     my $dfields = get_fields($derived);
  139.     my $bfields = get_fields($base);
  140.  
  141.     $dattr->[0] = @$battr;
  142.  
  143.     if( keys %$dfields ) {
  144.         warn <<"END";
  145. $derived is inheriting from $base but already has its own fields!
  146. This will cause problems.  Be sure you use base BEFORE declaring fields.
  147. END
  148.  
  149.     }
  150.  
  151.     # Iterate through the base's fields adding all the non-private
  152.     # ones to the derived class.  Hang on to the original attribute
  153.     # (Public, Private, etc...) and add Inherited.
  154.     # This is all too complicated to do efficiently with add_fields().
  155.     while (my($k,$v) = each %$bfields) {
  156.         my $fno;
  157.         if ($fno = $dfields->{$k} and $fno != $v) {
  158.             require Carp;
  159.             Carp::croak ("Inherited fields can't override existing fields");
  160.         }
  161.  
  162.         if( $battr->[$v] & PRIVATE ) {
  163.             $dattr->[$v] = PRIVATE | INHERITED;
  164.         }
  165.         else {
  166.             $dattr->[$v] = INHERITED | $battr->[$v];
  167.             $dfields->{$k} = $v;
  168.         }
  169.     }
  170.  
  171.     foreach my $idx (1..$#{$battr}) {
  172.         next if defined $dattr->[$idx];
  173.         $dattr->[$idx] = $battr->[$idx] & INHERITED;
  174.     }
  175. }
  176.  
  177. 1;
  178.  
  179. __END__
  180.  
  181.